home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 27 / Mac Magazin and MacEasy Magazine CD - Issue 27.iso / Grafik & Text / Sans-Faute⁄Grammaire ƒ / Adaptateurs / FileMaker Pro / Exemple Script < prev   
Text File  |  1996-02-20  |  479b  |  14 lines

  1. tell application "FileMaker Pro"
  2.     set RecIndex to 1
  3.     repeat while Exists (Record RecIndex)
  4.         -- vérification du champ "Commentaire"
  5.         copy cellValue of Cell "Commentaire" of (Record RecIndex) as styled text to theText
  6.         tell Application "Sans-Faute/Grammaire 2"
  7.             copy (Checking theText) to TheText2
  8.         end tell
  9.         copy TheText2 as styled text to cellValue of Cell "Commentaire" of (Record RecIndex)
  10.         -- fin de la vérification
  11.         set RecIndex to RecIndex + 1
  12.     end repeat
  13. end tell
  14.